home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / grid.hlp < prev    next >
Text File  |  1989-04-12  |  3KB  |  69 lines

  1. GRID = expr;                Specify coordinate system for plots
  2.  
  3. The GRID control specifies the coordinate system used for subsequent plots.
  4. GRID also affects the output produced by PRINT and WRITE.  Values for both
  5. the implicit loop variable and expressions are transformed based on the
  6. current grid type.
  7.  
  8. For any of the logarithmic coordinate systems, expression values must be
  9. strictly greater than zero.  For log-log plots, the implicit loop variable
  10. must also be strictly greater than zero.  Autoscaling is not recommended
  11. for logarithmic plots since it frequently generates minimum values that
  12. are less than or equal to 0 (and hence the axis lower limit will be
  13. negative infinity).
  14.  
  15. The possible values for 'expr' are:
  16. +
  17. NOMINAL or NONE or SHOWAXES
  18. Cartesian coordinates.  No conversion of the X and Y axis values before
  19. they are plotted.
  20.  
  21.   GRID = NONE;          Suppress the fiducial tick marks within the
  22.                         plot area.
  23.   GRID = SHOWAXES;      Shows the X and Y axes if they appear in the
  24.                         plot area.
  25.   GRID = NONE+SHOWAXES; Suppresses the inner fiducial tick marks but
  26.                         shows the X and Y axes if they appear in the
  27.                         plot area.
  28. +
  29. POLAR
  30. Polar coordinates.  X axis value (i.e.  value of the implicit loop
  31. variable) is converted to an angle, in radians, based on the current
  32. processing duration.  Thus, the START + BIAS value is equivalent to
  33. 0 radians and START + BIAS + DUR is equivalent to 2*pi radians.  Polar
  34. grids have radial tick markers every 15 degrees.
  35.  
  36. Y axis value is assumed to be a magnitude value (i.e.  distance from
  37. the origin) and thus should be greater than 0.  Y axis values less than
  38. 0 cause the point to be plotted in the quadrant 180 degrees from the
  39. actual quadrant.  Point (0,0) is in the center of the screen.  For
  40. example, PLOT(1) would draw a circle with a radius of one unit (it will
  41. not actually be circular due to the aspect ratio of the plotting area
  42. for the graphics interface).
  43. +
  44. POLOG
  45. Similar to POLAR except the log base 10 of the magnitude is plotted. 
  46. Magnitude values must be greater than or equal to 1 since log values
  47. are negative for values less than 1 and approach negative infinity as
  48. the magnitude value approaches 0.  Log values are undefined for
  49. negative magnitudes.
  50.  
  51. POLN
  52. Similar to POLOG except the log base e of the magnitude is plotted.
  53. +
  54. SEMILN
  55. Logarithmic coordinates on the Y axis only.  Value plotted is the
  56. logarithm (base e) of the Y axis value.
  57.  
  58. SEMILOG
  59. Logarithmic coordinates on the Y axis only.  Value plotted is the
  60. logarithm (base 10) of the Y axis value.
  61.  
  62. LN.LN
  63. Logarithmic coordinates on both the X and Y axes.  Values plotted are
  64. the logarithms (base e) of the X and Y axis values.
  65.  
  66. LOG.LOG
  67. Logarithmic coordinates on both the X and Y axes.  Values plotted are
  68. the logarithms (base 10) of the X and Y axis values.
  69.